do while php

36

do while php -

<?php
$i = 0;
do {
    echo $i;
} while ($i > 0);
?>

Comments

Submit
0 Comments